HOME

TheInfoList



OR:

F# (pronounced F sharp) is a functional-first, general purpose,
strongly typed In computer programming, one of the many ways that programming languages are colloquially classified is whether the language's type system makes it strongly typed or weakly typed (loosely typed). However, there is no precise technical definition ...
, multi-paradigm
programming language A programming language is a system of notation for writing computer programs. Most programming languages are text-based formal languages, but they may also be graphical. They are a kind of computer language. The description of a programming ...
that encompasses
functional Functional may refer to: * Movements in architecture: ** Functionalism (architecture) ** Form follows function * Functional group, combination of atoms within molecules * Medical conditions without currently visible organic basis: ** Functional sy ...
, imperative, and
object-oriented programming Object-oriented programming (OOP) is a programming paradigm based on the concept of "objects", which can contain data and code. The data is in the form of fields (often known as attributes or ''properties''), and the code is in the form of ...
methods. It is most often used as a cross-platform Common Language Infrastructure (CLI) language on .NET, but can also generate
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and
graphics processing unit A graphics processing unit (GPU) is a specialized electronic circuit designed to manipulate and alter memory to accelerate the creation of images in a frame buffer intended for output to a display device. GPUs are used in embedded systems, m ...
(GPU) code. F# is developed by the F# Software Foundation,
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
and open contributors. An open source, cross-platform compiler for F# is available from the F# Software Foundation. F# is a fully supported language in
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
and JetBrains Rider. Plug-ins supporting F# exist for many widely used editors including Visual Studio Code, Vim, and
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. F# is a member of the ML language family and originated as a
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...
implementation of a core of the programming language OCaml. It has also been influenced by C#, Python, Haskell, Scala and Erlang.


History


Versions


Language evolution

F# uses an open development and engineering process. The language evolution process is managed by
Don Syme Don Syme is an Australian computer scientist and a Principal Researcher at Microsoft Research, Cambridge, U.K. He is the designer and architect of the F# programming language, described by a reporter as being regarded as "the most original new f ...
from Microsoft Research as the
benevolent dictator for life Benevolent dictator for life (BDFL) is a title given to a small number of open-source software development leaders, typically project founders who retain the final say in disputes or arguments within the community. The phrase originated in 1995 w ...
(BDFL) for the language design, together with the F# Software Foundation. Earlier versions of the F# language were designed by
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
and Microsoft Research using a closed development process. F# originates from Microsoft Research, Cambridge, UK. The language was originally designed and implemented by
Don Syme Don Syme is an Australian computer scientist and a Principal Researcher at Microsoft Research, Cambridge, U.K. He is the designer and architect of the F# programming language, described by a reporter as being regarded as "the most original new f ...
, according to whom in the fsharp team, they say the F is for "Fun". Andrew Kennedy contributed to the design of units of measure. The Visual F# Tools for Visual Studio are developed by Microsoft. The F# Software Foundation developed the F# open-source compiler and tools, incorporating the open-source compiler implementation provided by the Microsoft Visual F# Tools team.


Language overview


Functional programming

While supporting object-oriented features available in C#, F# is a
strongly typed In computer programming, one of the many ways that programming languages are colloquially classified is whether the language's type system makes it strongly typed or weakly typed (loosely typed). However, there is no precise technical definition ...
functional-first language with a large number of capabilities that are normally found only in
functional programming In computer science, functional programming is a programming paradigm where programs are constructed by applying and composing functions. It is a declarative programming paradigm in which function definitions are trees of expressions tha ...
languages. Together, these features allow F# programs to be written in a completely functional style and also allow functional and object-oriented styles to be mixed. Examples of functional features are: * Everything is an expression *
Type inference Type inference refers to the automatic detection of the type of an expression in a formal language. These include programming languages and mathematical type systems, but also natural languages in some branches of computer science and linguistic ...
(using Hindley–Milner type inference) * Anonymous functions with capturing semantics (i.e., closures) * Immutable variables and objects * Lazy evaluation support * Higher-order functions * Nested functions * Currying * Pattern matching * Algebraic data types * Tuples * Monad pattern support (called ''computation expressions'') * Tail Call Optimisation F# is an expression-based language using eager evaluation and also in some instances lazy evaluation. Every statement in F#, including if expressions, try expressions and loops, is a composable expression with a static type. Functions and expressions that do not return any value have a return type of unit. F# uses the let keyword for binding values to a name. For example: let x = 3 + 4 binds the value 7 to the name x. New types are defined using the type keyword. For functional programming, F# provides ''tuple'', ''record'', ''discriminated union'', ''list'', ''option'', and ''result'' types. A ''
tuple In mathematics, a tuple is a finite ordered list (sequence) of elements. An -tuple is a sequence (or ordered list) of elements, where is a non-negative integer. There is only one 0-tuple, referred to as ''the empty tuple''. An -tuple is defi ...
'' represents a set of ''n'' values, where ''n'' ≥ 0. The value ''n'' is called the arity of the tuple. A 3-tuple would be represented as (A, B, C), where A, B, and C are values of possibly different types. A tuple can be used to store values only when the number of values is known at design-time and stays constant during execution. A ''record'' is a type where the data members are named. Here is an example of record definition: type R = Records can be created as . The with keyword is used to create a copy of a record, as in , which creates a new record by copying r and changing the value of the Name field (assuming the record created in the last example was named r). A discriminated union type is a type-safe version of C unions. For example, type A = , UnionCaseX of string , UnionCaseY of int Values of the union type can correspond to either union case. The types of the values carried by each union case is included in the definition of each case. The ''list'' type is an immutable linked list represented either using a notation (:: is the cons operator) or a shorthand as . An empty list is written []. The ''option'' type is a discriminated union type with choices Some(x) or None. F# types may be generic programming, generic, implemented as generic .NET types. F# supports lambda functions and closures. All functions in F# are first class values and are immutable. Functions can be curried. Being first-class values, functions can be passed as arguments to other functions. Like other functional programming languages, F# allows function composition (computer science) using the >> and << operators. F# provides ' that define a sequence seq , list ... /code> or array _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the___syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages].html" ;"title="_..._, ]
_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title="_..._, ]
_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]">_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title="_..._, ]
_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]">_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]">_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
_Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
_Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
_Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the___syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages].html" ;"title="_..._, ]
_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title="_..._, ]
_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]">_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title="_..._, ]
_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]">_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]">_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
_Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
_Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
_Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the___syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages].html" ;"title="_..._, ]
_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title="_..._, ]
_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]">_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title="_..._, ]
_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]">_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]">_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title="_..._, ]
_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
_Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
_Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the___syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages].html" ;"title="_..._, ]
_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title="_..._, ]
_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]">_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title="_..._, ]
_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]">_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]">_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]">_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
_Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
_Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
_Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
_Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the___syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages].html" ;"title="_..._, ]
_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title="_..._, ]
_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]">_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title="_..._, ]
_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]">_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]">_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
_Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
_Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
_Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the___syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages].html" ;"title="_..._, ]
_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title="_..._, ]
_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]">_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title="_..._, ]
_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]">_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]">_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
_Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
_Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
_Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the___syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages].html" ;"title="_..._, ]
_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title="_..._, ]
_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]">_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title="_..._, ]
_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]">_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]">_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title="_..._, ]
_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
_Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
_Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the___syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *__Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports__asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. _Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as__GPU_code.


_Units_of_measure

The_F#_type_system_supports__units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom__domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and__GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the__Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_ An_actor_or_actress_is_a_person_who_portrays_a_character_in_a_performance._The_actor_performs_"in_the_flesh"_in_the_traditional_medium_of_the_theatre_or_in_modern_media_such_as__film,_radio,_and_television._The_analogous_Greek_term_is__(),_lit_...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted__read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a__general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and__Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop__read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#__open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core_ ASP.NET_Core_is_a_free_and_open-source_web_framework_and_successor_to__ASP.NET,_developed_by_Microsoft._It_is_a_modular_framework_that_runs_on_both_the_full_.NET_Framework,_on_Windows,_and_the_cross-platform__.NET._However,_ASP.NET_Core_version_3__...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the__factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=__..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs __.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression _for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research _.NET_programming_languages _Cross-platform_free_software _Functional_languages _Microsoft_free_software _Microsoft_programming_languages _Microsoft_Research _ML_programming_language_family _OCaml_programming_language_family _Pattern_matching_programming_languages _Programming_languages_created_in_2005 _Programming_languages_supporting_units_of_measure _Software_using_the_Apache_license _Software_using_the_MIT_license _Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_lazy_evaluation, lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_monad_(functional_programming), monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_Control_flow#Loops, loops *_while_Control_flow#Loops, loops *_array_data_structure, arrays,_created_with_the_[, _..._, ]_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_Graphics_processing_unit, GPU_code.


_Units_of_measure

The_F#_type_system_supports_Units_of_measurement, units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via__metaprogramming_to_support_embedding_custom_domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the__lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_Graphics_processing_unit, GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_Freebase_(database), Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement__LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_Actor_model, Actor_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *__JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *__LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_ASP.NET_Core_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the__WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for__iOS_and_Android_(operating_system), Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_Facebook_ Facebook_is_an_online__social_media_and__social_networking_service_owned_by_American_company__Meta_Platforms._Founded_in_2004_by__Mark_Zuckerberg_with_fellow__Harvard_College_students_and_roommates__Eduardo_Saverin,_Andrew_McCollum,__Dust_...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_Open-source_model, open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_GitHub_ GitHub,_Inc._()_is_an__Internet_hosting_service_for__software_development_and__version_control_using__Git._It_provides_the__distributed_version_control_of_Git_plus__access_control,_bug_tracking,__software_feature_requests,_task_management,__cont_...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_NuGet_ NuGet_(pronounced_"New_Get")And_The_Winner_Is,_NuGet
_haacke_...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_ASP.NET_Core.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_[1..n]_, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs [1_.._10] , >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression [_for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_] , >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form _.html"_;"title="System.STAThread>">System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages].html" ;"title="_..._, ]
_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title="_..._, ]
_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]">_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the___through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are__Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are__lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses__pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the__monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for__loops *_while__loops *__arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml"_;"title="_..._, ]
_through_code_that_generates_values._For_example, _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languages>_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title="_..._, ]
_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously. Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers._The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations._A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers._F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the _seq_ forms_a_sequence_of_squares_of_numbers_from_0_to_14_by_filtering_out_numbers_from_the_range_of_numbers_from_0_to_25._Sequences_are_ Generator_(computer_programming), generators_–_values_are_generated_on-demand_(i.e.,_are_ lazily_evaluated)_–_while_lists_and_arrays_are_evaluated_eagerly. F#_uses_ pattern_matching_to_bind_values_to_names._Pattern_matching_is_also_used_when_accessing_discriminated_unions_–_the_union_is_value_matched_against_pattern_rules_and_a_rule_is_selected_when_a_match_succeeds._F#_also_supports_''Active_Patterns''_as_a_form_of_extensible_pattern_matching._It_is_used,_for_example,_when_multiple_ways_of_matching_on_a_type_exist. F#_supports_a_general_syntax_for_defining_compositional_computations_called_'._Sequence_expressions,_asynchronous_computations_and_queries_are_particular_kinds_of_computation_expressions._Computation_expressions_are_an_implementation_of_the_ monad_pattern.


_Imperative_programming

F#_support_for_imperative_programming_includes *_for_ loops *_while_ loops *_ arrays,_created_with_the_[, _..._, ]_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]">_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]">_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]">_..._, /code>_syntax *_ Associative_array, hash_table,_created_with_the_dict__..._/code>_syntax_or_System.Collections.Generic.Dictionary<_,_>_type. Values_and_record_fields_can_also_be_labelled_as_mutable._For_example: //_Define_'x'_with_initial_value_'1' let_mutable_x_=_1 //_Change_the_value_of_'x'_to_'3' x_<-_3 Also,_F#_supports_access_to_all_CLI_types_and_objects_such_as_those_defined_in_the_System.Collections.Generic_namespace_defining_imperative_data_structures.


_Object-oriented_programming

Like_other__Common_Language_Infrastructure_(CLI)_languages,_F#_can_use_CLI_types_through_object-oriented_programming.__F#_support_for_object-oriented_programming_in_expressions_includes: *_Dot-notation,_e.g.,_ *_Object_expressions,_e.g.,_ *_Object_construction,_e.g.,_ *_Type_tests,_e.g.,_ *_Type_coercions,_e.g.,_ *_Named_arguments,_e.g.,_ *_Named_setters,_e.g.,_ *_Optional_arguments,_e.g.,_ Support_for_object-oriented_programming_in_patterns_includes *_Type_tests,_e.g.,_ *_Active_patterns,_which_can_be_defined_over_object_types
F#_object_type_definitions_can_be_class,_struct,_interface,_enum,_or_delegate_type_definitions,_corresponding_to_the_definition_forms_found_in__C#._For_example,_here_is_a_class_with_a_constructor_taking_a_name_and_age,_and_declaring_two_properties. ///_A_simple_object_type_definition type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age


_Asynchronous_programming

F#_supports_ asynchronous_programming_through_''asynchronous_workflows''._An_asynchronous_workflow_is_defined_as_a_sequence_of_commands_inside_an_async,_as_in let_asynctask_=_ ____async_ The_let!_indicates_that_the_expression_on_the_right_(getting_the_response)_should_be_done_asynchronously_but_the_flow_should_only_continue_when_the_result_is_available._In_other_words,_from_the_point_of_view_of_the_code_block,_it's_as_if_getting_the_response_is_a_blocking_call,_whereas_from_the_point_of_view_of_the_system,_the_thread_won't_be_blocked_and_may_be_used_to_process_other_flows_while_the_result_needed_for_this_one_doesn't_become_available. The_async_block_may_be_invoked_using_the_Async.RunSynchronously_function._Multiple_async_blocks_can_be_executed_in_parallel_using_the_Async.Parallel_function_that_takes_a_list_of_async_objects_(in_the_example,_asynctask_is_an_async_object)_and_creates_another_async_object_to_run_the_tasks_in_the_lists_in_parallel._The_resultant_object_is_invoked_using_Async.RunSynchronously.
Inversion_of_control_in_F#_follows_this_pattern.


_Parallel_programming

Parallel_programming_is_supported_partly_through_the_Async.Parallel,_Async.Start_and_other_operations_that_run_asynchronous_blocks_in_parallel. Parallel_programming_is_also_supported_through_the_Array.Parallel_functional_programming_operators_in_the_F#_standard_library,_direct_use_of_the_System.Threading.Tasks_task_programming_model,_the_direct_use_of_.NET_thread_pool_and_.NET_threads_and_through_dynamic_translation_of_F#_code_to_alternative_parallel_execution_engines_such_as_ GPU_code.


_Units_of_measure

The_F#_type_system_supports_ units_of_measure_checking_for_numbers.
_The_units_of_measure_feature_integrates_with_F#_type_inference_to_require_minimal_type_annotations_in_user_code.


_Metaprogramming

F#_allows_some_forms_of_syntax_customizing_via_ metaprogramming_to_support_embedding_custom_ domain-specific_languages_within_the_F#_language,_particularly_through_computation_expressions. F#_includes_a_feature_for_run-time_meta-programming_called_quotations.
_A_quotation_expression_evaluates_to_an_abstract_syntax_tree_representation_of_the_F#_expressions._Similarly,_definitions_labelled_with_the_ lt;ReflectedDefinition>/code>_attribute_can_also_be_accessed_in_their_quotation_form._F#_quotations_are_used_for_various_purposes_including_to_compile_F#_code_into_JavaScript_ JavaScript_(),_often_abbreviated_as_JS,_is_a__programming_language_that_is_one_of_the_core_technologies_of_the__World_Wide_Web,_alongside_HTML_and_CSS._As_of_2022,_98%_of__websites_use_JavaScript_on_the__client_side_for__webpage_behavior,_of_...
_and_ GPU_code._(Quotations_represent_their_F#_code_expressions_as_data_for_use_by_other_parts_of_the_program_while_requiring_it_to_be_syntactically_correct_F#_code).


_Information-rich_programming

F#_3.0_introduced_a_form_of_compile-time_meta-programming_through_statically_extensible_type_generation_called_F#_type_providers.
_F#_type_providers_allow_the_F#_compiler_and_tools_to_be_extended_with_components_that_provide_type_information_to_the_compiler_on-demand_at_compile_time._F#_type_providers_have_been_used_to_give_strongly_typed_access_to_connected_information_sources_in_a_scalable_way,_including_to_the_ Freebase_knowledge_graph. In_F#_3.0_the_F#_quotation_and_computation_expression_features_are_combined_to_implement_ LINQ_queries.
__For_example: //_Use_the_OData_type_provider_to_create_types_that_can_be_used_to_access_the_Northwind_database. open_Microsoft.FSharp.Data.TypeProviders type_Northwind_=_ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let_db_=_Northwind.GetDataContext() //_A_query_expression. let_query1_=_query_ The_combination_of_type_providers,_queries_and_strongly_typed_functional_programming_is_known_as_''information_rich_programming''.


_Agent_programming

F#_supports_a_variation_of_the_
Actor An actor or actress is a person who portrays a character in a performance. The actor performs "in the flesh" in the traditional medium of the theatre or in modern media such as film, radio, and television. The analogous Greek term is (), lit ...
_programming_model_through_the_in-memory_implementation_of_lightweight_asynchronous_agents._For_example,_the_following_code_defines_an_agent_and_posts_2_messages: let_counter_= ____MailboxProcessor.Start(fun_inbox_-> ________let_rec_loop_n_= ____________async_ ________loop_0)


_Development_tools

*_Visual_Studio_ Visual_Studio_is_an_integrated_development_environment_(IDE)_from_Microsoft._It_is_used_to_develop_computer_programs_including_web_site,_websites,_web_apps,_web_services_and_mobile_apps._Visual_Studio_uses_Microsoft_software_development_platfor_...
,_with_the_Visual_F#_tools_from_Microsoft_ Microsoft_Corporation_is_an_American__multinational__technology_corporation_producing__computer_software,__consumer_electronics,_personal_computers,_and_related_services_headquartered_at_the_Microsoft_Redmond_campus_located_in__Redmond,_Washi_...
_installed,_can_be_used_to_create,_run_and_debug_F#_projects._The_Visual_F#_tools_include_a_Visual_Studio-hosted_ read–eval–print_loop_(REPL)_interactive_console_that_can_execute_F#_code_as_it_is_written.__Visual_Studio_for_Mac_also_fully_supports_F#_projects. *__Visual_Studio_Code_contains_full_support_for_F#_via_th
Ionide_extension
*_F#_can_be_developed_with_any_text_editor._Specific_support_exists_in_editors_such_as_Emacs_ Emacs_,_originally_named_EMACS_(an_acronym_for_"Editor_MACroS"),_is_a_family_of__text_editors_that_are_characterized_by_their__extensibility._The_manual_for_the_most_widely_used_variant,_GNU_Emacs,_describes_it_as_"the_extensible,_customizable,__...
. *_ JetBrains_Rider_is_optimized_for_the_development_of_F#_Code_starting_with_release_2019.1. *_ LINQPad_has_supported_F#_since_version_2.x.


_Application_areas

F#_is_a_ general-purpose_programming_language.


_Web_programming

Th
SAFE_Stack
is_an_end-to-end_F#_stack_to_develop_web_applications._It_uses_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
_on_the_server_side_an
Fable
on_the_client_side. An_alternative_end-to-end_F#_option_is_the_ WebSharper_framework.


_Cross-platform_app_development

F#_can_be_used_together_with_th
Visual_Studio_Tools_for_Xamarin
to_develop_apps_for_ iOS_and_ Android._Th
Fabulous
library_provides_a_more_comfortable_functional_interface.


__Analytical_programming_

Among_others,_F#_is_used_for_quantitative_finance_programming,_energy_trading_and_portfolio_optimization,_machine_learning,_business_intelligence_and_social_gaming_on_
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In_the_2010s,_F#_has_been_positioned_as_an_optimized_alternative_to__C#._F#'s_scripting_ability_and_inter-language_compatibility_with_all_Microsoft_products_have_made_it_popular_among_developers.


_Scripting

F#_can_be_used_as_a_scripting_language,_mainly_for_desktop_ read–eval–print_loop_(REPL)_scripting.


_Open-source_community

The_F#_ open-source_community_includes_the_F#_Software_Foundation_and_the_F#_Open_Source_Group_at_
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
._Popular_open-source_F#_projects_include:
Fable
_an_F#_to_Javascript_transpiler_based_o
Babel

Paket
_an_alternative_package_manager_for_.NET_that_can_still_use_
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
_repositories,_but_has_centralised_version-management.
FAKE
_an_F#_friendly_build-system.
Giraffe
_a_functionally_oriented_middleware_for_
ASP.NET_Core ASP.NET Core is a free and open-source web framework and successor to ASP.NET, developed by Microsoft. It is a modular framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET. However, ASP.NET Core version 3 ...
.
Suave
_a_lightweight_web-server_and_web-development_library.


_Compatibility

F#_features_a_legacy_"ML_compatibility_mode"_that_can_directly_compile_programs_written_in_a_large_subset_of_OCaml_roughly,_with_no_functors,_objects,_polymorphic_variants,_or_other_additions.


_Examples

A_few_small_samples_follow: //_This_is_a_comment_for_a_sample_hello_world_program. printfn_"Hello_World!" A_Person_class_with_a_constructor_taking_a_name_and_age_and_two_immutable_properties. ///_This_is_a_documentation_comment_for_a_type_definition. type_Person(name_:_string,_age_:_int)_= ____member_x.Name_=_name ____member_x.Age_=_age ____ ///_class_instantiation let_mrSmith_=_Person("Smith",_42) A_simple_example_that_is_often_used_to_demonstrate_the_syntax_of_functional_languages_is_the_ factorial_function_for_non-negative_32-bit_integers,_here_shown_in_F#: ///_Using_pattern_matching_expression let_rec_factorial_n_= ____match_n_with ____, _0_->_1 ____, ___->_n_*_factorial_(n_-_1) ///_For_a_single-argument_functions_there_is_syntactic_sugar_(pattern_matching_function): let_rec_factorial_=_function_ ____, _0_->_1_ ____, _n_->_n_*_factorial_(n_-_1) ____ ///_Using_fold_and_range_operator let_factorial_n_=_ ..n, >_Seq.fold_(*)_1 Iteration_examples: ///_Iteration_using_a_'for'_loop let_printList_lst_=_ ____for_x_in_lst_do ________printfn_"%d"_x ///_Iteration_using_a_higher-order_function let_printList2_lst_=_ ____List.iter_(printfn_"%d")_lst ///_Iteration_using_a_recursive_function_and_pattern_matching let_rec_printList3_lst_= ____match_lst_with ____, _[]_->_() ____, _h_::_t_-> ________printfn_"%d"_h ________printList3_t Fibonacci_examples: ///_Fibonacci_Number_formula let_fib_n_= ____let_rec_g_n_f0_f1_= ________match_n_with ________, _0_->_f0 ________, _1_->_f1 ________, ___->_g_(n_-_1)_f1_(f0_+_f1) ____g_n_0_1 ///_Another_approach_-_a_lazy_infinite_sequence_of_Fibonacci_numbers let_fibSeq_=_Seq.unfold_(fun_(a,b)_->_Some(a+b,_(b,_a+b)))_(0,1) //_Print_even_fibs _.._10, >_List.map_____fib , >_List.filter__(fun_n_->_(n_%_2)_=_0) , >_printList //_Same_thing,_using_a_list_expression for_i_in_1..10_do ____let_r_=_fib_i ____if_r_%_2_=_0_then_yield_r_, >_printList A_sample_Windows_Forms_program: //_Open_the_Windows_Forms_library open_System.Windows.Forms //_Create_a_window_and_set_a_few_properties let_form_=_new_Form(Visible=true,_TopMost=true,_Text="Welcome_to_F#") //_Create_a_label_to_show_some_text_in_the_form let_label_= ____let_x_=_3_+_(4_*_5) ____new_Label(Text_=_$"") //_Add_the_label_to_the_form form.Controls.Add(label) //_Finally,_run_the_form System.STAThread>Application.Run(form) Asynchronous_parallel_programming_sample_(parallel_CPU_and_I/O_tasks): ///_A_simple_prime_number_detector let_isPrime_(n:int)_= ___let_bound_=_int_(sqrt_(float_n)) ___seq__, >_Seq.forall_(fun_x_->_n_%_x_<>_0) //_We_are_using_async_workflows let_primeAsync_n_= ____async_ ///_Return_primes_between_m_and_n_using_multiple_threads let_primes_m_n_= ____seq_ ________, >_Seq.map_primeAsync ________, >_Async.Parallel ________, >_Async.RunSynchronously ________, >_Array.filter_snd ________, >_Array.map_fst //_Run_a_test primes_1000000_1002000 ____, >_Array.iter_(printfn_"%d")


_See_also

*__OCaml *__C# *_.NET_Framework_ The_.NET_Framework_(pronounced_as_"''dot_net"'')_is_a_proprietary__software_framework_developed_by_Microsoft_that_runs_primarily_on_Microsoft_Windows._It_was_the_predominant_implementation_of_the__Common_Language_Infrastructure_(CLI)_until_bein_...


_Notes


_References

*_ *_ *_ *_ *_ *_ *_ *_


_External_links

*__The_F#_Software_Foundation
The_F#_Open_Source_Group_at_GitHub

The_Visual_F#_Developer_Center

Tsunami,_an_embeddable_desktop_F#_IDE



Try_F#,_for_learning_F#_in_a_web_browser

F#_Snippets_Site

The_Visual_F#_team_blog

The_original_Microsoft_Research_website_for_F#

Planet_F#

The_F#_Survival_Guide,_Dec_2009_(Web-based_book)

The_F#_Language_Specification

An_introduction_to_F#_programming


{{Microsoft_Research .NET_programming_languages Cross-platform_free_software Functional_languages Microsoft_free_software Microsoft_programming_languages Microsoft_Research ML_programming_language_family OCaml_programming_language_family Pattern_matching_programming_languages Programming_languages_created_in_2005 Programming_languages_supporting_units_of_measure Software_using_the_Apache_license Software_using_the_MIT_license Statically_typed_programming_languageshtml" ;"title=" ... , ]
through code that generates values. For example, seq forms a sequence of squares of numbers from 0 to 14 by filtering out numbers from the range of numbers from 0 to 25. Sequences are Generator (computer programming), generators – values are generated on-demand (i.e., are lazy evaluation, lazily evaluated) – while lists and arrays are evaluated eagerly. F# uses pattern matching to bind values to names. Pattern matching is also used when accessing discriminated unions – the union is value matched against pattern rules and a rule is selected when a match succeeds. F# also supports ''Active Patterns'' as a form of extensible pattern matching. It is used, for example, when multiple ways of matching on a type exist. F# supports a general syntax for defining compositional computations called '. Sequence expressions, asynchronous computations and queries are particular kinds of computation expressions. Computation expressions are an implementation of the monad (functional programming), monad pattern.


Imperative programming

F# support for imperative programming includes * for Control flow#Loops, loops * while Control flow#Loops, loops * array data structure, arrays, created with the [, ... , ] syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages]"> ... , /code> syntax * Associative array, hash table, created with the dict ... /code> syntax or System.Collections.Generic.Dictionary<_,_> type. Values and record fields can also be labelled as mutable. For example: // Define 'x' with initial value '1' let mutable x = 1 // Change the value of 'x' to '3' x <- 3 Also, F# supports access to all CLI types and objects such as those defined in the System.Collections.Generic namespace defining imperative data structures.


Object-oriented programming

Like other Common Language Infrastructure (CLI) languages, F# can use CLI types through object-oriented programming. F# support for object-oriented programming in expressions includes: * Dot-notation, e.g., * Object expressions, e.g., * Object construction, e.g., * Type tests, e.g., * Type coercions, e.g., * Named arguments, e.g., * Named setters, e.g., * Optional arguments, e.g., Support for object-oriented programming in patterns includes * Type tests, e.g., * Active patterns, which can be defined over object types F# object type definitions can be class, struct, interface, enum, or delegate type definitions, corresponding to the definition forms found in C#. For example, here is a class with a constructor taking a name and age, and declaring two properties. /// A simple object type definition type Person(name : string, age : int) = member x.Name = name member x.Age = age


Asynchronous programming

F# supports asynchronous programming through ''asynchronous workflows''. An asynchronous workflow is defined as a sequence of commands inside an async, as in let asynctask = async The let! indicates that the expression on the right (getting the response) should be done asynchronously but the flow should only continue when the result is available. In other words, from the point of view of the code block, it's as if getting the response is a blocking call, whereas from the point of view of the system, the thread won't be blocked and may be used to process other flows while the result needed for this one doesn't become available. The async block may be invoked using the Async.RunSynchronously function. Multiple async blocks can be executed in parallel using the Async.Parallel function that takes a list of async objects (in the example, asynctask is an async object) and creates another async object to run the tasks in the lists in parallel. The resultant object is invoked using Async.RunSynchronously. Inversion of control in F# follows this pattern.


Parallel programming

Parallel programming is supported partly through the Async.Parallel, Async.Start and other operations that run asynchronous blocks in parallel. Parallel programming is also supported through the Array.Parallel functional programming operators in the F# standard library, direct use of the System.Threading.Tasks task programming model, the direct use of .NET thread pool and .NET threads and through dynamic translation of F# code to alternative parallel execution engines such as Graphics processing unit, GPU code.


Units of measure

The F# type system supports Units of measurement, units of measure checking for numbers. The units of measure feature integrates with F# type inference to require minimal type annotations in user code.


Metaprogramming

F# allows some forms of syntax customizing via metaprogramming to support embedding custom domain-specific languages within the F# language, particularly through computation expressions. F# includes a feature for run-time meta-programming called quotations. A quotation expression evaluates to an abstract syntax tree representation of the F# expressions. Similarly, definitions labelled with the lt;ReflectedDefinition>/code> attribute can also be accessed in their quotation form. F# quotations are used for various purposes including to compile F# code into
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and Graphics processing unit, GPU code. (Quotations represent their F# code expressions as data for use by other parts of the program while requiring it to be syntactically correct F# code).


Information-rich programming

F# 3.0 introduced a form of compile-time meta-programming through statically extensible type generation called F# type providers. F# type providers allow the F# compiler and tools to be extended with components that provide type information to the compiler on-demand at compile time. F# type providers have been used to give strongly typed access to connected information sources in a scalable way, including to the Freebase (database), Freebase knowledge graph. In F# 3.0 the F# quotation and computation expression features are combined to implement LINQ queries. For example: // Use the OData type provider to create types that can be used to access the Northwind database. open Microsoft.FSharp.Data.TypeProviders type Northwind = ODataService<"http://services.odata.org/Northwind/Northwind.svc"> let db = Northwind.GetDataContext() // A query expression. let query1 = query The combination of type providers, queries and strongly typed functional programming is known as ''information rich programming''.


Agent programming

F# supports a variation of the Actor model, Actor programming model through the in-memory implementation of lightweight asynchronous agents. For example, the following code defines an agent and posts 2 messages: let counter = MailboxProcessor.Start(fun inbox -> let rec loop n = async loop 0)


Development tools

*
Visual Studio Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs including web site, websites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platfor ...
, with the Visual F# tools from
Microsoft Microsoft Corporation is an American multinational technology corporation producing computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washi ...
installed, can be used to create, run and debug F# projects. The Visual F# tools include a Visual Studio-hosted read–eval–print loop (REPL) interactive console that can execute F# code as it is written. Visual Studio for Mac also fully supports F# projects. * Visual Studio Code contains full support for F# via th
Ionide extension
* F# can be developed with any text editor. Specific support exists in editors such as
Emacs Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, ...
. * JetBrains Rider is optimized for the development of F# Code starting with release 2019.1. * LINQPad has supported F# since version 2.x.


Application areas

F# is a general-purpose programming language.


Web programming

Th
SAFE Stack
is an end-to-end F# stack to develop web applications. It uses ASP.NET Core on the server side an
Fable
on the client side. An alternative end-to-end F# option is the WebSharper framework.


Cross-platform app development

F# can be used together with th
Visual Studio Tools for Xamarin
to develop apps for iOS and Android (operating system), Android. Th
Fabulous
library provides a more comfortable functional interface.


Analytical programming

Among others, F# is used for quantitative finance programming, energy trading and portfolio optimization, machine learning, business intelligence and social gaming on
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
. In the 2010s, F# has been positioned as an optimized alternative to C#. F#'s scripting ability and inter-language compatibility with all Microsoft products have made it popular among developers.


Scripting

F# can be used as a scripting language, mainly for desktop read–eval–print loop (REPL) scripting.


Open-source community

The F# Open-source model, open-source community includes the F# Software Foundation and the F# Open Source Group at
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, cont ...
. Popular open-source F# projects include:
Fable
an F# to Javascript transpiler based o
Babel

Paket
an alternative package manager for .NET that can still use
NuGet NuGet (pronounced "New Get")And The Winner Is, NuGet
haacke ...
repositories, but has centralised version-management.
FAKE
an F# friendly build-system.
Giraffe
a functionally oriented middleware for ASP.NET Core.
Suave
a lightweight web-server and web-development library.


Compatibility

F# features a legacy "ML compatibility mode" that can directly compile programs written in a large subset of OCaml roughly, with no functors, objects, polymorphic variants, or other additions.


Examples

A few small samples follow: // This is a comment for a sample hello world program. printfn "Hello World!" A Person class with a constructor taking a name and age and two immutable properties. /// This is a documentation comment for a type definition. type Person(name : string, age : int) = member x.Name = name member x.Age = age /// class instantiation let mrSmith = Person("Smith", 42) A simple example that is often used to demonstrate the syntax of functional languages is the factorial function for non-negative 32-bit integers, here shown in F#: /// Using pattern matching expression let rec factorial n = match n with , 0 -> 1 , _ -> n * factorial (n - 1) /// For a single-argument functions there is syntactic sugar (pattern matching function): let rec factorial = function , 0 -> 1 , n -> n * factorial (n - 1) /// Using fold and range operator let factorial n = [1..n] , > Seq.fold (*) 1 Iteration examples: /// Iteration using a 'for' loop let printList lst = for x in lst do printfn "%d" x /// Iteration using a higher-order function let printList2 lst = List.iter (printfn "%d") lst /// Iteration using a recursive function and pattern matching let rec printList3 lst = match lst with , [] -> () , h :: t -> printfn "%d" h printList3 t Fibonacci examples: /// Fibonacci Number formula let fib n = let rec g n f0 f1 = match n with , 0 -> f0 , 1 -> f1 , _ -> g (n - 1) f1 (f0 + f1) g n 0 1 /// Another approach - a lazy infinite sequence of Fibonacci numbers let fibSeq = Seq.unfold (fun (a,b) -> Some(a+b, (b, a+b))) (0,1) // Print even fibs [1 .. 10] , > List.map fib , > List.filter (fun n -> (n % 2) = 0) , > printList // Same thing, using a list expression [ for i in 1..10 do let r = fib i if r % 2 = 0 then yield r ] , > printList A sample Windows Forms program: // Open the Windows Forms library open System.Windows.Forms // Create a window and set a few properties let form = new Form(Visible=true, TopMost=true, Text="Welcome to F#") // Create a label to show some text in the form let label = let x = 3 + (4 * 5) new Label(Text = $"") // Add the label to the form form.Controls.Add(label) // Finally, run the form System.STAThread>Application.Run(form) Asynchronous parallel programming sample (parallel CPU and I/O tasks): /// A simple prime number detector let isPrime (n:int) = let bound = int (sqrt (float n)) seq , > Seq.forall (fun x -> n % x <> 0) // We are using async workflows let primeAsync n = async /// Return primes between m and n using multiple threads let primes m n = seq , > Seq.map primeAsync , > Async.Parallel , > Async.RunSynchronously , > Array.filter snd , > Array.map fst // Run a test primes 1000000 1002000 , > Array.iter (printfn "%d")


See also

* OCaml * C# *
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...


Notes


References

* * * * * * * *


External links

* The F# Software Foundation
The F# Open Source Group at GitHub

The Visual F# Developer Center

Tsunami, an embeddable desktop F# IDE



Try F#, for learning F# in a web browser

F# Snippets Site

The Visual F# team blog

The original Microsoft Research website for F#

Planet F#

The F# Survival Guide, Dec 2009 (Web-based book)

The F# Language Specification

An introduction to F# programming


{{Microsoft Research .NET programming languages Cross-platform free software Functional languages Microsoft free software Microsoft programming languages Microsoft Research ML programming language family OCaml programming language family Pattern matching programming languages Programming languages created in 2005 Programming languages supporting units of measure Software using the Apache license Software using the MIT license Statically typed programming languages